home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / NoDataPane.m < prev    next >
Encoding:
Text File  |  1995-06-12  |  688 b   |  42 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10.  
  11. static char RCSId[]="$Id: NoDataPane.m,v 1.3 1993/05/04 16:22:16 davis Exp $";
  12.  
  13.  
  14. #import <appkit/Application.h>
  15. #import "NoDataPane.h"
  16.  
  17.  
  18. @implementation NoDataPane
  19.  
  20.  
  21. - init
  22. {
  23.     [super init];
  24.  
  25.     [NXApp loadNibSection: "NoDataPane.nib"
  26.             owner: self
  27.         withNames: NO
  28.          fromZone: [self zone]];
  29.  
  30.     return self;
  31. }
  32.  
  33.  
  34.  
  35. // Shuts up the compiler about unused RCSId
  36. - (const char *) rcsid
  37. {
  38.     return RCSId;
  39. }
  40.  
  41. @end
  42.